Skip to content

Commit 9f7b256

Browse files
committed
Add .linelint.yml file to ignore css files
1 parent 562ce01 commit 9f7b256

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.linelint.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 'true' will fix files
2+
autofix: false
3+
4+
# list of paths to ignore, uses gitignore syntaxes (executes before any rule)
5+
ignore:
6+
- src/styles/*.css
7+
- .lintlint.yml
8+
9+
rules:
10+
# checks if file ends in a newline character
11+
end-of-file:
12+
# set to true to enable this rule
13+
enable: true
14+
15+
# set to true to disable autofix (if enabled globally)
16+
disable-autofix: true
17+
18+
# if true also checks if file ends in a single newline character
19+
single-new-line: true

0 commit comments

Comments
 (0)