Disabling eslint in build for now

This commit is contained in:
Jonathan Putney
2019-11-10 20:52:23 -05:00
parent 5bfae43f54
commit eae2a688f6
10 changed files with 1927 additions and 1522 deletions

View File

@@ -4,6 +4,7 @@ module.exports = {
browser: true,
es6: true,
},
extends: ['eslint:recommended', 'google'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
@@ -11,6 +12,7 @@ module.exports = {
parserOptions: {
sourceType: "module",
allowImportExportEverywhere: false,
classPrivateMethods: true,
ecmaFeatures: {
globalReturn: false,
},
@@ -19,5 +21,7 @@ module.exports = {
},
},
rules: {
camelcase: 'off',
'max-len': 'off',
},
};