Skip to content

Commit 0f78eda

Browse files
authored
Merge branch '4.0-dev' into installation
2 parents 35219ec + 8d194a9 commit 0f78eda

File tree

120 files changed

+19401
-20199
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+19401
-20199
lines changed

.babelrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"modules": false,
7+
"targets": {
8+
"browsers": [
9+
"last 1 version"
10+
]
11+
}
12+
}
13+
]
14+
]
15+
}

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
# A list of files to ignore from linting
2+
*.js
3+
!*.es6.js
4+
!build/**/*.js

.eslintrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,12 @@
1212
// Additional global variables your script accesses during execution
1313
"globals": {
1414
"Joomla": true
15+
},
16+
// Rule overrides
17+
"rules": {
18+
// Allow usage of dev-dependencies in js files in build directory
19+
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["build/**/*.js"]}],
20+
// Allow strict mode (we are not dealing with modules)
21+
"strict": [0]
1522
}
1623
}

0 commit comments

Comments
 (0)