You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
619 B
24 lines
619 B
{ |
|
"env": { |
|
"browser": true, |
|
"es2021": true, |
|
"mocha": true |
|
}, |
|
"extends": ["airbnb-base", "plugin:prettier/recommended"], |
|
"parserOptions": { |
|
"ecmaVersion": 12, |
|
"sourceType": "module" |
|
}, |
|
"plugins": ["prettier"], |
|
"rules": { |
|
"prettier/prettier": "error", |
|
"prefer-const": "off", |
|
"camelcase": "off", |
|
"no-underscore-dangle": "off", |
|
"consistent-return": "off", |
|
/* Remove the necessity to use this on classes */ |
|
"class-methods-use-this": "off", |
|
/* Enable variables declarations from shadowing variables declared in the outer scope */ |
|
"no-shadow": "off" |
|
} |
|
}
|
|
|