realistic-database
Version:
A basic noSQL database.
41 lines (40 loc) • 1.15 kB
JSON
{
"env": {
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "html"],
"settings": {
"html/html-extensions": [".html", ".htm"],
"html/indent": "+2",
"html/report-bad-indent": "error"
},
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "double"],
"semi": ["error", "always"],
"constructor-super": "error",
"no-compare-neg-zero": "error",
"no-const-assign": "error",
"no-console": "error",
"no-dupe-args": "error",
"no-dupe-keys": "error",
"no-duplicate-case": "error",
"no-unexpected-multiline": "error",
"no-use-before-define": "error",
"camelcase": "error",
"capitalized-comments": "error",
"no-var": "error",
"prefer-arrow-callback": "error",
"prefer-const": "error",
"arrow-parens": "error",
"arrow-spacing": "error"
}
}