Skip to content

Commit db7d86f

Browse files
Merge pull request #8 from eleven-labs/fix/5-missing-files
fix(5-missing-files)
2 parents 2135200 + 234c088 commit db7d86f

File tree

5 files changed

+56
-0
lines changed

5 files changed

+56
-0
lines changed

.babelrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"targets": {
7+
"browsers": [
8+
"last 2 versions",
9+
"Chrome >= 52",
10+
"FireFox >= 44",
11+
"Safari >= 7",
12+
"ie >= 10",
13+
"last 4 Edge versions",
14+
],
15+
},
16+
},
17+
],
18+
"stage-2",
19+
"vue",
20+
],
21+
}

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[*.{js,vue}]
11+
indent_size = 2
12+
13+
[*.php]
14+
indent_size = 4

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/src/AppBundle/Resources/public/*

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
extends: 'airbnb-base',
3+
plugins: ['import', 'html'],
4+
settings: {
5+
'html/html-extensions': ['.html', '.vue'],
6+
},
7+
rules: {
8+
'no-unused-expressions': ['error', { allowTernary: true }],
9+
},
10+
env: {
11+
jest: true,
12+
browser: true,
13+
},
14+
};

.stylelintrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "stylelint-config-sass-guidelines",
3+
rules: {
4+
"max-nesting-depth": 2
5+
}
6+
}

0 commit comments

Comments
 (0)