Skip to content

Commit d0c19a8

Browse files
authored
Issue #9: Set up linting (#58)
* initial config setup * updates to docs * add format fixes to css comments * restructure source files * add File structure section * various README updates * set up cdn and various document updates * add Autoprefixer and bump deps * wrap up stylelint config * clean up after rebase * remove label cursor pointer style
1 parent 4e7ec7c commit d0c19a8

19 files changed

+3826
-1590
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
16
[*]
27
charset = utf-8
38
end_of_line = lf
49
indent_style = space
510
indent_size = 2
11+
insert_final_newline = true
612
max_line_length = 80
713
trim_trailing_whitespace = true
814

915
[*.md]
16+
max_line_length = 0
1017
trim_trailing_whitespace = false

.eslintrc.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
# Folders and files
2-
node_modules/
3-
lib/
1+
node_modules
2+
dist
43
npm-debug.log
54
yarn-error.log
6-
7-
# Dot files
5+
idea.md
86
.cache
9-
.DS_Store
10-
.vscode

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
lib
1+
/dist
2+
/test
23
package.json

.stylelintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/test

0 commit comments

Comments
 (0)