Skip to content

Commit

Permalink
Merge pull request #240 from kbase/UFI-60
Browse files Browse the repository at this point in the history
UFI-60
  • Loading branch information
eapearson authored Jul 25, 2023
2 parents 4ba096a + e6e0fea commit abf082b
Show file tree
Hide file tree
Showing 6 changed files with 1,813 additions and 1,484 deletions.
37 changes: 37 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
module.exports = {
'env': {
'browser': true,
'amd': true,
'es6': true,
},
'extends': 'google',
'overrides': [
{
'env': {
'node': true,
},
'files': [
'.eslintrc.{js,cjs}',
],
'parserOptions': {
'sourceType': 'script',
},
},
],
'parserOptions': {
'ecmaVersion': 9,
},
'rules': {
'max-len': [
'error',
{
'code': 100,
'tabWidth': 4,
'ignoreComments': true, // "comments": 80
'ignoreUrls': true,
'ignoreStrings': true,
'ignoreTemplateLiterals': true,
},
],
},
};
File renamed without changes.
Loading

0 comments on commit abf082b

Please sign in to comment.