generated from kylewhittemore/full-stack-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
29 lines (29 loc) · 774 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// =====================================================
// The Eslint configuration below can be adjusted to
// suit your needs. Please visit the ESLint website at
// https://eslint.org/docs/user-guide/configuring for
// information on how to do so. The configuration is
// set to use the Airbnb style recommendations.
// =====================================================
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true,
jquery: true,
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {
"no-console": "off"
},
};