Skip to content

Commit

Permalink
initial commit for v6
Browse files Browse the repository at this point in the history
  • Loading branch information
rcbyr committed Nov 25, 2021
1 parent bfb2816 commit c6c2bbf
Show file tree
Hide file tree
Showing 43 changed files with 9,354 additions and 4,506 deletions.
11 changes: 0 additions & 11 deletions .babelrc

This file was deleted.

4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
dist
*.js
.playground
29 changes: 29 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "simple-import-sort", "prettier"],
"env": {
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:jest/recommended"
],
"rules": {
"prettier/prettier": ["error"],
"no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-this-alias": "off",
"simple-import-sort/imports": "error",
"sort-keys": [
"error",
"asc",
{ "caseSensitive": true, "minKeys": 2, "natural": false }
]
}
}
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@ node_modules
.DS_Store
.gh-pages
dist
.build

/*.js
/*.css
/*.scss
/*.map
/*.map
/*.d.ts

playground/build/*
types
yarn-error.log

!babel.config.js
!jest.config.js
!.eslintrc.js
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v14
12 changes: 6 additions & 6 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
"useTabs": false,
"tabWidth": 2,
"semi": false,
"printWidth": 80,
"bracketSpacing": true,
"arrowParens": "avoid"
}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '12'
- '14'
before_deploy:
- npm run build
deploy:
Expand Down
Loading

0 comments on commit c6c2bbf

Please sign in to comment.