Skip to content

Commit 219a834

Browse files
author
Chris Johnson
committed
updates
1 parent 8c922bc commit 219a834

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+8557
-6713
lines changed

.stylelintrc.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"cache": true,
3+
"defaultSeverity": "warning",
4+
"extends": [
5+
"stylelint-config-standard"
6+
],
7+
"fix": true,
8+
"rules": {
9+
"color-function-notation": "modern",
10+
"color-hex-length": "long",
11+
"comment-whitespace-inside": "always",
12+
"custom-property-empty-line-before": "never",
13+
"declaration-block-no-redundant-longhand-properties": false,
14+
"declaration-empty-line-before": "never",
15+
"declaration-property-unit-allowed-list": {
16+
"font-size": [
17+
"px",
18+
"rem"
19+
]
20+
},
21+
"font-family-name-quotes": "always-unless-keyword",
22+
"font-weight-notation": "numeric",
23+
"function-name-case": "lower",
24+
"function-url-quotes": "always",
25+
"import-notation": "string",
26+
"max-nesting-depth": 2,
27+
"media-feature-range-notation": "prefix",
28+
"rule-empty-line-before": [
29+
"always",
30+
{
31+
"except": "first-nested"
32+
}
33+
],
34+
"selector-attribute-quotes": "always",
35+
"selector-class-pattern": null,
36+
"selector-max-compound-selectors": 3,
37+
"selector-pseudo-element-colon-notation": "double",
38+
"selector-type-case": "lower",
39+
"shorthand-property-no-redundant-values": false,
40+
"value-keyword-case": "lower"
41+
},
42+
"overrides": [
43+
{
44+
"files": [
45+
"*.scss",
46+
"**/*.scss"
47+
],
48+
"extends": [
49+
"stylelint-config-standard-scss"
50+
],
51+
"rules": {
52+
"scss/at-mixin-named-arguments": "always",
53+
"scss/dollar-variable-empty-line-after": [
54+
"always",
55+
{
56+
"expect": [
57+
"last-nested",
58+
"before-dollar-variable"
59+
],
60+
"ignore": [
61+
"inside-single-line-block"
62+
]
63+
}
64+
],
65+
"scss/dollar-variable-first-in-block": [
66+
true,
67+
{
68+
"except": [
69+
"root"
70+
],
71+
"ignore": [
72+
"comments",
73+
"imports"
74+
]
75+
}
76+
],
77+
"scss/dollar-variable-no-missing-interpolation": true
78+
}
79+
}
80+
]
81+
}

3

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"compilerOptions": {
3+
/* Base Options: */
4+
"allowJs": true,
5+
"allowSyntheticDefaultImports": true,
6+
"baseUrl": "./",
7+
"esModuleInterop": true,
8+
"isolatedModules": true,
9+
"moduleDetection": "force",
10+
"noUnusedLocals": true,
11+
"paths": {
12+
"@cypress/*": [
13+
"cypress/*"
14+
],
15+
"@src/*": [
16+
"src/*"
17+
],
18+
"@ts/*": [
19+
"types/*"
20+
]
21+
},
22+
"resolveJsonModule": true,
23+
"skipLibCheck": true,
24+
"target": "es2022",
25+
"types": [
26+
"cypress",
27+
"jquery",
28+
"node",
29+
"vite/client",
30+
"./cypress.d.ts",
31+
],
32+
"verbatimModuleSyntax": true,
33+
/* Strictness */
34+
"noUncheckedIndexedAccess": true,
35+
"strict": true,
36+
/* If transpiling with TypeScript: */
37+
"moduleResolution": "Bundler",
38+
"module": "es2022",
39+
"outDir": "dist",
40+
"sourceMap": true,
41+
/* AND if you're building for a library: */
42+
"declaration": true,
43+
/* AND if you're building for a library in a monorepo: */
44+
"composite": false, // Throws reference errors in VSCode if true
45+
"declarationMap": true,
46+
/* If your code runs in the DOM: */
47+
"lib": [
48+
"es2022",
49+
"dom",
50+
"dom.iterable"
51+
],
52+
},
53+
"exclude": [
54+
"node_modules",
55+
"cypress",
56+
"cypress.config.ts",
57+
],
58+
"include": [
59+
"src",
60+
"cypress.d.ts",
61+
],
62+
}

0 commit comments

Comments
 (0)