Skip to content

Commit 939c9a4

Browse files
committed
Use Mega-Linter locally
1 parent 6e38e71 commit 939c9a4

File tree

5 files changed

+2846
-297
lines changed

5 files changed

+2846
-297
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ Thumbs.db
2222
# Node
2323
node_modules
2424
npm-debug.log
25+
26+
# Lint
27+
megalinter-reports/

.jscpd.json

+15
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

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
APPLY_FIXES: all
2+
DEFAULT_BRANCH: main
3+
SHOW_ELAPSED_TIME: false
4+
FILEIO_REPORTER: false
5+
DISABLE_LINTERS:
6+
- SPELL_CSPELL

0 commit comments

Comments
 (0)