Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jun 11, 2019. It is now read-only.

Commit f3f2462

Browse files
committed
first commit
0 parents commit f3f2462

39 files changed

+51953
-0
lines changed

‎.babelrc‎

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"presets": [
3+
"react",
4+
[
5+
"env",
6+
{
7+
"targets": {
8+
"browsers": ["last 2 versions"]
9+
}
10+
}
11+
]
12+
],
13+
"plugins": [
14+
"transform-class-properties",
15+
"transform-object-rest-spread",
16+
[
17+
"transform-runtime",
18+
{
19+
"polyfill": false,
20+
"helpers": false,
21+
"regenerator": true
22+
}
23+
],
24+
[
25+
"babel-plugin-transform-builtin-extend",
26+
{
27+
"globals": ["Error", "Array"]
28+
}
29+
]
30+
]
31+
}

‎.eslintrc.js‎

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
"use strict";
2+
3+
const OFF = 0;
4+
const WARN = 1;
5+
const ERROR = 2;
6+
7+
module.exports = {
8+
extends: "airbnb",
9+
plugins: ["react", "jsx-a11y", "import"],
10+
11+
rules: {
12+
quotes: [
13+
ERROR,
14+
"double",
15+
{ avoidEscape: true, allowTemplateLiterals: true },
16+
],
17+
indent: OFF,
18+
"no-tabs": OFF,
19+
"comma-dangle": [ERROR, "always-multiline"],
20+
"arrow-parens": [ERROR, "as-needed"],
21+
"import/no-extraneous-dependencies": OFF,
22+
"import/prefer-default-export": WARN,
23+
"import/first": OFF,
24+
"no-console": [WARN, { allow: ["warn", "error"] }],
25+
"no-confusing-arrow": OFF,
26+
27+
// React & JSX
28+
// Our transforms set this automatically
29+
"react/jsx-indent": OFF,
30+
"react/jsx-indent-props": OFF,
31+
"react/jsx-closing-bracket-location": OFF,
32+
"react/prefer-stateless-function": WARN,
33+
34+
// TODO
35+
"no-warning-comments": [
36+
WARN,
37+
{ terms: ["todo", "fixme"], location: "anywhere" },
38+
],
39+
},
40+
settings: {
41+
"import/resolver": {
42+
webpack: {
43+
config: "webpack.config.js",
44+
},
45+
},
46+
},
47+
};

‎.gitignore‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### Node ###
2+
npm-debug.log*
3+
node_modules

‎.prettierrc‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"tabWidth": 4,
3+
"useTabs": true,
4+
"trailingComma": "all"
5+
}

‎README.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Vector Graphics Editor
2+
3+
### Installation
4+
5+
`npm i`
6+
7+
`nps host`
8+
9+
Go to http://localhost:3000/

‎build/assets/index.css‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background-color: #f7f7f7;
3+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /