Skip to content

Commit

Permalink
Inital Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rodi01 committed Jul 9, 2019
0 parents commit e6909ae
Show file tree
Hide file tree
Showing 45 changed files with 232,576 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,46 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["@typescript-eslint", "prettier"],
"env": {
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": [
"error",
{
"semi": false
}
],
"react/jsx-no-bind": 0,
"global-require": 0,
"react/no-array-index-key": 0,
"react/require-default-props": 0,
"jsx-a11y/no-autofocus": 0,
"jsx-a11y/label-has-for": 0,
"no-return-assign": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"class-methods-use-this": 0,
"react/prop-types": 0,
"prefer-destructuring": 0,
"no-undef": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0
}
}
16 changes: 16 additions & 0 deletions .gitignore
@@ -0,0 +1,16 @@
.tern-project
publish.sh
# build artefacts
#Rename-it.sketchplugin/Contents/Sketch
#Rename-it.sketchplugin/Contents/Resources/_webpack_resources
#Rename-it.sketchplugin/Contents/Resources/*.js
CNAME

# npm
node_modules
.npm
npm-debug.log

# mac
.DS_Store
.prettierrc
15 changes: 15 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,15 @@
{
"workbench.colorTheme": "Dracula Soft",
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
]
}

0 comments on commit e6909ae

Please sign in to comment.