-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "dashboard-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {},
"scripts": {
"css-lint": "stylelint --color \"**/*.css\"",
"js-lint": "eslint --color **/*.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-google": "^0.14.0",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"L": "readonly"
},
"rules": {
"indent": ["error", 2, { "VariableDeclarator": 1 }],
"max-len": "off",
"object-curly-spacing": "off",
"operator-linebreak": ["error", "after", { "overrides": { "?": "ignore", ":": "ignore" } }],
"require-jsdoc": "off"
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"declaration-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"no-duplicate-selectors": null
}
}
}