@yamato-daiwa/style_guides 0.0.0 → 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BasicPreset.js +3 -1
- package/Partials/ECMA_ScriptBasicRules.js +3 -4
- package/Partials/Overridings/TestFilesOverridings.js +12 -0
- package/Partials/Overridings/Vue/VueComponentsFilesOverrides.js +29 -0
- package/Partials/Overridings/Vue/VuexModuleComponentsOverrides.js +10 -0
- package/package.json +5 -11
package/BasicPreset.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
const ECMA_ScriptBasicRules = require("./Partials/ECMA_ScriptBasicRules.js")
|
|
2
2
|
const TypeScriptOverridings = require("./Partials/Overridings/TypeScriptOverridings");
|
|
3
|
+
const TestFilesOverridings = require("./Partials/Overridings/TestFilesOverridings.js")
|
|
3
4
|
|
|
4
5
|
|
|
5
6
|
module.exports = {
|
|
@@ -28,7 +29,8 @@ module.exports = {
|
|
|
28
29
|
},
|
|
29
30
|
|
|
30
31
|
overrides: [
|
|
31
|
-
TypeScriptOverridings
|
|
32
|
+
TypeScriptOverridings,
|
|
33
|
+
TestFilesOverridings
|
|
32
34
|
],
|
|
33
35
|
|
|
34
36
|
globals: {
|
|
@@ -77,6 +77,7 @@ module.exports = {
|
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
/* --- Prevention of the confusing / Stupid errors ---------------------------------------------------------------- */
|
|
80
|
+
"no-constant-binary-expression": "error",
|
|
80
81
|
"no-self-assign": "error",
|
|
81
82
|
"no-self-compare": "error",
|
|
82
83
|
"no-sparse-arrays": "error",
|
|
@@ -247,12 +248,10 @@ module.exports = {
|
|
|
247
248
|
properties: "never",
|
|
248
249
|
exceptions: [
|
|
249
250
|
"add",
|
|
250
|
-
"
|
|
251
|
+
"id",
|
|
251
252
|
"key",
|
|
252
253
|
"pug",
|
|
253
|
-
"
|
|
254
|
-
"vue",
|
|
255
|
-
"Vue"
|
|
254
|
+
"vue"
|
|
256
255
|
]
|
|
257
256
|
}
|
|
258
257
|
],
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
|
|
3
|
+
files: [
|
|
4
|
+
"*.vue",
|
|
5
|
+
"*.vue.ts"
|
|
6
|
+
],
|
|
7
|
+
|
|
8
|
+
parser: "vue-eslint-parser",
|
|
9
|
+
|
|
10
|
+
parserOptions: {
|
|
11
|
+
parser: "@typescript-eslint/parser",
|
|
12
|
+
project: "tsconfig.json",
|
|
13
|
+
extraFileExtensions: [ ".vue" ],
|
|
14
|
+
tsconfigRootDir: "./"
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
rules: {
|
|
18
|
+
"class-methods-use-this": "off",
|
|
19
|
+
"@typescript-eslint/indent": "off",
|
|
20
|
+
"@typescript-eslint/member-ordering": "off",
|
|
21
|
+
"vue/script-indent": [
|
|
22
|
+
"warn",
|
|
23
|
+
2,
|
|
24
|
+
{
|
|
25
|
+
baseIndent: 1
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamato-daiwa/style_guides",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.1",
|
|
4
4
|
"description": "The guidelines for ESLint, Pug and Stylus.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,21 +16,15 @@
|
|
|
16
16
|
],
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"devDependencies": {
|
|
19
|
+
"eslint-plugin-vue-pug": "0.4.1",
|
|
19
20
|
"typescript": "4.6.3"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
23
|
-
"@typescript-eslint/parser": "5.
|
|
24
|
-
"eslint": "8.
|
|
23
|
+
"@typescript-eslint/eslint-plugin": "5.20.0",
|
|
24
|
+
"@typescript-eslint/parser": "5.20.0",
|
|
25
|
+
"eslint": "8.14.0",
|
|
25
26
|
"eslint-plugin-node": "11.1.0"
|
|
26
27
|
},
|
|
27
|
-
"peerDependencies": {
|
|
28
|
-
"@typescript-eslint/eslint-plugin": "^5.18.0",
|
|
29
|
-
"@typescript-eslint/parser": "^5.18.0",
|
|
30
|
-
"eslint": "^8.13.0",
|
|
31
|
-
"eslint-plugin-node": "^11.1.0",
|
|
32
|
-
"typescript": ">=4.0.0 <4.7.0"
|
|
33
|
-
},
|
|
34
28
|
"files": [
|
|
35
29
|
"BasicPreset.js",
|
|
36
30
|
"Partials"
|