Skip to content

Commit 2cc3dc3

Browse files
committed
Update linting, then delint.
1 parent 63a69fa commit 2cc3dc3

7 files changed

Lines changed: 1446 additions & 37 deletions

File tree

.eslintrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"env": {
33
"es2017": true,
4+
"jasmine": true,
45
"mocha": true,
56
"node": true
67
},
@@ -17,6 +18,10 @@
1718
"parser": "@typescript-eslint/parser",
1819
"parserOptions": {
1920
"ecmaVersion": 2018,
21+
"project": [
22+
"tsconfig.json",
23+
"tsconfig.spec.json"
24+
],
2025
"sourceType": "module"
2126
},
2227
"plugins": [

.stylelintrc.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"extends": "stylelint-config-standard",
3+
"plugins": [
4+
"stylelint-scss"
5+
],
6+
"rules": {
7+
"at-rule-no-unknown": null,
8+
"scss/at-rule-no-unknown": true,
9+
"color-function-notation": null,
10+
"color-hex-case": "upper",
11+
"no-descending-specificity": null,
12+
"no-empty-source": null,
13+
"no-invalid-position-at-import-rule": null,
14+
"selector-class-pattern": null,
15+
"selector-descendant-combinator-no-non-space": null,
16+
"selector-list-comma-newline-after": null,
17+
"selector-pseudo-element-no-unknown": [
18+
true,
19+
{
20+
"ignorePseudoElements": [
21+
"ng-deep"
22+
]
23+
}
24+
],
25+
"selector-type-case": null,
26+
"selector-type-no-unknown": null,
27+
"value-keyword-case": null
28+
}
29+
}

0 commit comments

Comments
 (0)