Skip to content

Commit

Permalink
Merge pull request #37 from LoveLiveSunshine/1.x-dev
Browse files Browse the repository at this point in the history
Add API Server
  • Loading branch information
kokororin committed Feb 18, 2020
2 parents 98f5051 + 98ea2bc commit a9f3853
Show file tree
Hide file tree
Showing 22 changed files with 1,593 additions and 921 deletions.
2 changes: 2 additions & 0 deletions .env
@@ -0,0 +1,2 @@
PIXIV_USER=SAMPLE
PIXIV_PASSWORD=SAMPLE
29 changes: 0 additions & 29 deletions .eslintrc

This file was deleted.

31 changes: 31 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,31 @@
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
jsx: true,
legacyDecorators: true
},
ecmaVersion: 2019,
sourceType: 'module'
},
env: {
browser: true,
amd: true,
es6: true,
node: true,
mocha: true
},
extends: ['kotori'],
globals: {
autobind: true
},
settings: {
react: {
version: require('react').version
}
},
rules: {
'linebreak-style': 'error',
'react/sort-comp': 'off'
}
};
8 changes: 8 additions & 0 deletions .prettierrc
@@ -0,0 +1,8 @@
{
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"useTabs": false
}

0 comments on commit a9f3853

Please sign in to comment.