We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562ce01 commit 9f7b256Copy full SHA for 9f7b256
.linelint.yml
@@ -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