Fixed database typo and removed unnecessary class identifier.
This commit is contained in:
parent
00ad49a143
commit
45fb349a7d
5098 changed files with 952558 additions and 85 deletions
|
@ -0,0 +1,32 @@
|
|||
module.exports = {
|
||||
root: true,
|
||||
ignorePatterns: ["jquery-ui-*/", "node_modules/"],
|
||||
env: {
|
||||
browser: true,
|
||||
jquery: true,
|
||||
},
|
||||
extends: ["eslint:recommended", "prettier"],
|
||||
globals: {
|
||||
IPython: "readonly",
|
||||
MozWebSocket: "readonly",
|
||||
},
|
||||
rules: {
|
||||
indent: ["error", 2, { SwitchCase: 1 }],
|
||||
"no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
argsIgnorePattern: "^_",
|
||||
},
|
||||
],
|
||||
quotes: ["error", "double", { avoidEscape: true }],
|
||||
},
|
||||
overrides: [
|
||||
{
|
||||
files: "js/**/*.js",
|
||||
rules: {
|
||||
indent: ["error", 4, { SwitchCase: 1 }],
|
||||
quotes: ["error", "single", { avoidEscape: true }],
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue