Skip to content

Commit bde0a5b

Browse files
committed
initial commit noteshandler
0 parents  commit bde0a5b

File tree

11 files changed

+35408
-0
lines changed

11 files changed

+35408
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
build/
2+
dist/
3+
node_modules/
4+
.snapshots/
5+
*.min.js

.eslintrc

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"parser": "babel-eslint",
3+
"extends": [
4+
"standard",
5+
"standard-react",
6+
"plugin:prettier/recommended",
7+
"prettier/standard"
8+
],
9+
"env": {
10+
"node": true
11+
},
12+
"parserOptions": {
13+
"ecmaVersion": 2020,
14+
"ecmaFeatures": {
15+
"legacyDecorators": true,
16+
"jsx": true
17+
}
18+
},
19+
"settings": {
20+
"react": {
21+
"version": "16"
22+
}
23+
},
24+
"rules": {
25+
"space-before-function-paren": 0,
26+
"import/export": 0
27+
}
28+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.env
2+
files

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"singleQuote": true,
3+
"jsxSingleQuote": true,
4+
"semi": false,
5+
"tabWidth": 2,
6+
"bracketSpacing": true,
7+
"jsxBracketSameLine": false,
8+
"arrowParens": "always",
9+
"trailingComma": "none"
10+
}

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- 14

LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)