Skip to content

Commit c61fcb7

Browse files
committed
attempt to upgrade to 8
1 parent 558e191 commit c61fcb7

File tree

184 files changed

+37994
-0
lines changed

Some content is hidden

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

184 files changed

+37994
-0
lines changed

.browserslistrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# https://github.com/browserslist/browserslist#readme
2+
3+
>= 0.5%
4+
last 2 major versions
5+
not dead
6+
Chrome >= 60
7+
Firefox >= 60
8+
Firefox ESR
9+
iOS >= 12
10+
Safari >= 12
11+
not Explorer <= 11

.cspell.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "0.1",
3+
"language": "en",
4+
"ignorePaths": [
5+
"**/node_modules/**",
6+
"**/vscode-extension/**",
7+
"**/.git/**",
8+
".vscode",
9+
"megalinter",
10+
"package-lock.json",
11+
"report"
12+
],
13+
"words": []
14+
}

.jscpd.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"threshold": 0,
3+
"reporters": ["html", "markdown"],
4+
"ignore": [
5+
"**/node_modules/**",
6+
"**/.git/**",
7+
"**/.rbenv/**",
8+
"**/.venv/**",
9+
"**/*cache*/**",
10+
"**/.github/**",
11+
"**/.idea/**",
12+
"**/report/**",
13+
"**/*.svg"
14+
]
15+
}

.mega-linter.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
# Configuration file for MegaLinter
3+
# See all available variables at https://megalinter.github.io/configuration/ and in linters documentation
4+
APPLY_FIXES: none
5+
SHOW_ELAPSED_TIME: true
6+
FILEIO_REPORTER: false
7+
ENABLE: [CSS, HTML, JSON, YAML, JSX, ACTION, CREDENTIALS]
8+
DISABLE_LINTERS: [CSS_SCSS_LINT, YAML_PRETTIER]
9+
SHOW_SKIPPED_LINTERS: false

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist/
2+
build/
3+
importsMap.jsx
4+
Generate-Import-Map.js

.prettierrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": false,
3+
"trailingComma": "all",
4+
"singleQuote": true,
5+
"printWidth": 100,
6+
"tabWidth": 2
7+
}

.secretlintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore VSCode development certificate private key.
2+
**/.vscode/key.key

.secretlintrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"rules": [
3+
{
4+
"id": "@secretlint/secretlint-rule-preset-recommend"
5+
}
6+
]
7+
}

.stylelintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "stylelint-config-sass-guidelines",
3+
"rules": {
4+
"selector-class-pattern": null,
5+
"max-nesting-depth": 6,
6+
"selector-no-qualifying-type": [
7+
true,
8+
{
9+
"ignore": ["attribute", "class"]
10+
}
11+
],
12+
"selector-max-compound-selectors": 5
13+
}
14+
}

0 commit comments

Comments
 (0)