Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit 7bbefe4

Browse files
committed
[BROKEN] package crossdeps
1 parent 752421a commit 7bbefe4

13 files changed

Lines changed: 10852 additions & 6998 deletions

File tree

.babelrc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{
2-
"plugins": [
3-
"transform-object-rest-spread",
4-
"transform-export-extensions",
5-
"transform-es2015-modules-commonjs",
6-
"syntax-trailing-function-commas"
7-
],
2+
"presets": ["node8"],
83
"env": {
94
"test": {
105
"presets": ["@ava/stage-4"],

.eslintrc

Lines changed: 3 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,7 @@
11
{
2-
"extends": "airbnb-base",
3-
"env": {
4-
"browser": true,
5-
"node": true,
6-
"es6": true
7-
},
8-
"parserOptions": {
9-
"ecmaVersion": 7,
10-
"ecmaFeatures": {
11-
"experimentalObjectRestSpread": true
12-
},
13-
"sourceType": "module"
14-
},
15-
"rules": {
16-
"quotes": [0, "single", {"avoidEscape": true}],
17-
"semi": [2, "never"],
18-
"no-unused-vars": ["error", { "vars": "all", "args": "after-used", "varsIgnorePattern": "PropTypes" }],
19-
"import/no-unresolved": [0, { "commonjs": true, "amd": true }],
20-
"global-require": 0,
21-
"quote-props": [2, "as-needed"],
22-
"max-len": [1, 120],
23-
"no-unused-expressions": [2, { "allowShortCircuit": true, "allowTernary": true }],
24-
"no-confusing-arrow": 0,
25-
"no-use-before-define": [2, { "functions": true }],
26-
"no-param-reassign": ["error", { "props": false }],
27-
"consistent-return": 0,
28-
"import/no-extraneous-dependencies": 0,
29-
"import/prefer-default-export": 0,
30-
"no-restricted-syntax": [2, "WithStatement"],
31-
"no-continue": 0,
32-
"arrow-parens": 0,
33-
"generator-star-spacing": 0,
34-
"no-multiple-empty-lines": [1, { "max": 1 }],
35-
"no-mixed-operators": 0,
36-
"react/forbid-prop-types": 0,
37-
"class-methods-use-this": 0,
38-
"comma-dangle": ["error", {
39-
"functions": "never",
40-
"objects": "always-multiline",
41-
"arrays": "always-multiline",
42-
"exports": "always-multiline",
43-
"imports": "always-multiline"
44-
}],
45-
"brace-style": ["error", "stroustrup"]
46-
},
2+
"extends": "atomix-base",
473
"parser": "babel-eslint",
48-
"settings": {
49-
"import/resolve": {
50-
"moduleDirectory": ["node_modules", "src"]
51-
}
4+
"parserOptions": {
5+
"ecmaVersion": 2017
526
}
537
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "independent"
6+
"version": "0.10.5"
77
}

0 commit comments

Comments
 (0)