diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2018-09-12 15:10:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-12 15:10:12 -0500 |
| commit | 5caf25a6de253a45897f859da3efd3830a69de06 (patch) | |
| tree | 1835b49643306a1a95269164137ac840a0107dd4 /.eslintrc.js | |
| parent | 1ebb0798740195733dcd9f0e32f7da31d3f01f8c (diff) | |
| parent | 559ff78cdf43bce9365f545b8eb38bc2bab0fcb8 (diff) | |
Merge pull request #3 from AttorneyOnline/2.3
2.3
Diffstat (limited to '.eslintrc.js')
| -rw-r--r-- | .eslintrc.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..3b5d12a --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,35 @@ +module.exports = { + "env": { + "browser": true, + "es6": true, + "jquery": true + }, + "extends": "eslint:recommended", + "parserOptions": { + "ecmaVersion": 2016, + "sourceType": "module" + }, + "rules": { + "indent": [ + "error", + "tab" + ], + "linebreak-style": [ + "off" + ], + "quotes": [ + "warn", + "double" + ], + "semi": [ + "error", + "always" + ], + "no-console": [ + "off" + ], + "no-unused-vars": [ + "warn" + ], + } +};
\ No newline at end of file |
