Skip to content

Commit b330602

Browse files
author
KHOUBZA Younes
committed
add dotfiles
1 parent 9318ccc commit b330602

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
max_line_length = 80
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
max_line_length = 0
15+
trim_trailing_whitespace = false
16+
17+
[COMMIT_EDITMSG]
18+
max_line_length = 0

.eslintignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# don't ever lint node_modules
22
node_modules
3+
**/node_modules
34

45
# don't lint build output (make sure it's set to your correct build folder name)
5-
dist
6+
dist/
67

78
# don't lint nyc coverage output
8-
coverage
9+
build/
10+
coverage/
11+
fixtures/

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

0 commit comments

Comments
 (0)