Skip to content

Commit 654e1bb

Browse files
author
Andrew Welch
committed
feat: Add linting
1 parent 7ddceed commit 654e1bb

File tree

6 files changed

+5373
-450
lines changed

6 files changed

+5373
-450
lines changed

buildchain/.eslintignore

Whitespace-only changes.

buildchain/.eslintrc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"root": true,
3+
"parser": "vue-eslint-parser",
4+
"parserOptions": {
5+
"parser": "@typescript-eslint/parser",
6+
"ecmaVersion": 2020,
7+
"sourceType": "module"
8+
},
9+
"rules": {
10+
"no-undef": "off"
11+
},
12+
"env": {
13+
"browser": true,
14+
"amd": true,
15+
"node": true
16+
},
17+
"plugins": [
18+
"@typescript-eslint"
19+
],
20+
"extends": [
21+
"eslint:recommended",
22+
"plugin:@typescript-eslint/recommended",
23+
"plugin:vue/vue3-recommended"
24+
]
25+
}

buildchain/.stylelintrc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"extends": [
3+
"stylelint-config-recommended",
4+
"stylelint-config-standard-scss",
5+
"stylelint-config-recommended-vue"
6+
],
7+
"rules": {
8+
"at-rule-no-unknown": [ true, {
9+
"ignoreAtRules": [
10+
"apply",
11+
"extends",
12+
"screen",
13+
"responsive",
14+
"tailwind"
15+
]
16+
}],
17+
"block-no-empty": null
18+
}
19+
}

0 commit comments

Comments
 (0)