This repository has been archived by the owner on Jun 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Heejin Lee
committed
May 13, 2018
1 parent
311ee62
commit 19697c0
Showing
90 changed files
with
1,291 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
app/renderer/ | ||
app/dist/ | ||
app/node_modules/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
{ | ||
"extends": "recommended/node", | ||
"rules": { | ||
"comma-dangle": ["warn", "only-multiline"], | ||
"no-unused-vars": "warn", | ||
"camelcase": "off", | ||
"object-shorthand": "off", | ||
"guard-for-in": "warn", | ||
"arrow-body-style": "off", | ||
"consistent-return": "warn", | ||
"no-throw-literal": "warn", | ||
"quote-props": "off", | ||
"new-cap": "off", | ||
"default-case": "off", | ||
"no-empty": "warn", | ||
"curly": "off", | ||
"padded-blocks": "off", | ||
"no-use-before-define": "warn", | ||
"no-param-reassign": ["error", {"props": false}], | ||
"max-len": "off", | ||
"no-underscore-dangle": "off", | ||
"strict": "off", | ||
"global-require": "off", | ||
"no-restricted-syntax": "off", | ||
"no-multi-spaces": "off", | ||
"spaced-comment": "off", | ||
"no-trailing-spaces": "off", | ||
"key-spacing": "off", | ||
"func-names": "off", | ||
"no-empty-function": "off", | ||
"no-console": "warn", | ||
"import/no-extraneous-dependencies": "off", | ||
"import/no-commonjs": "warn", | ||
"import/no-nodejs-modules": "off" | ||
}, | ||
"env": { | ||
"jest": true | ||
}, | ||
"plugins": [ | ||
"react" | ||
], | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
} | ||
"extends": ["recommended/node", "plugin:prettier/recommended"], | ||
"rules": { | ||
"comma-dangle": ["warn", "only-multiline"], | ||
"no-unused-vars": ["error", { "vars": "all", "args": "none", "ignoreRestSiblings": false }], | ||
"camelcase": "off", | ||
"object-shorthand": "off", | ||
"guard-for-in": "warn", | ||
"arrow-body-style": "off", | ||
"consistent-return": "warn", | ||
"no-throw-literal": "warn", | ||
"quote-props": "off", | ||
"new-cap": "off", | ||
"default-case": "off", | ||
"no-empty": "warn", | ||
"curly": "off", | ||
"padded-blocks": "off", | ||
"no-use-before-define": "warn", | ||
"no-param-reassign": ["error", { "props": false }], | ||
"max-len": "off", | ||
"no-underscore-dangle": "off", | ||
"strict": "off", | ||
"global-require": "off", | ||
"no-restricted-syntax": "off", | ||
"no-multi-spaces": "off", | ||
"spaced-comment": "off", | ||
"no-trailing-spaces": "off", | ||
"key-spacing": "off", | ||
"func-names": "off", | ||
"no-empty-function": "off", | ||
"no-console": "warn", | ||
"import/no-extraneous-dependencies": "off", | ||
"import/no-commonjs": "off", | ||
"import/no-nodejs-modules": "off", | ||
"no-sync": "off", | ||
"eqeqeq": "off", | ||
"require-yield": "off", | ||
"class-methods-use-this": "off", | ||
"prettier/prettier": "error" | ||
}, | ||
"env": { | ||
"jest": true | ||
}, | ||
"plugins": ["react", "prettier"], | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
app/renderer/ | ||
app/dist/ | ||
app/node_modules/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"arrowParens": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,18 @@ | ||
{ | ||
"include": [ | ||
"./@types/*.ts" | ||
], | ||
"exclude": [ | ||
|
||
], | ||
"include": ["./@types/*.ts"], | ||
"exclude": [], | ||
"compilerOptions": { | ||
"module": "es6", | ||
"lib": [ | ||
"es7", "es2015.promise", "dom" | ||
], | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"module": "es6", | ||
"lib": ["es7", "es2015.promise", "dom"], | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"strictNullChecks": true, | ||
// "baseUrl": "../", | ||
"types": [], | ||
"noEmit": false, | ||
"outDir": "./", | ||
"pretty": true, | ||
"types": [], | ||
"noEmit": false, | ||
"outDir": "./", | ||
"pretty": true, | ||
"listEmittedFiles": true, | ||
"alwaysStrict": true | ||
|
||
"alwaysStrict": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.