Urara-Blog/node_modules/.pnpm-store/v3/files/14/f6806cedf8701dc857dcb49a1c0e1797ec60e7b4a2bbf03a3e9cb77c1059770cf40e173e5facc97a6928a2fd7c28dc5dacf9a82057009931f8c9e44ed8e8db
2022-08-14 01:14:53 +08:00

47 lines
1,013 B
Text

{
"root": true,
"rules": {
"indent": ["error", "tab", { "SwitchCase": 1 }],
"semi": [2, "always"],
"keyword-spacing": [2, { "before": true, "after": true }],
"space-before-blocks": [2, "always"],
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"no-cond-assign": 0,
"no-unused-vars": 2,
"object-shorthand": [2, "always"],
"no-const-assign": 2,
"no-class-assign": 2,
"no-this-before-super": 2,
"no-var": 2,
"no-unreachable": 2,
"valid-typeof": 2,
"quote-props": [2, "as-needed"],
"one-var": [2, "never"],
"prefer-arrow-callback": 2,
"prefer-const": [2, { "destructuring": "all" }],
"arrow-spacing": 2,
"no-inner-declarations": 0
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js"]
}
}
}
}