File tree 7 files changed +1709
-1299
lines changed
7 files changed +1709
-1299
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
root : true ,
3
+ parser : 'babel-eslint' ,
3
4
parserOptions : {
4
5
ecmaVersion : 2018 ,
5
6
sourceType : 'module'
@@ -15,6 +16,7 @@ module.exports = {
15
16
browser : true
16
17
} ,
17
18
rules : {
19
+ 'ember/no-jquery' : 'error'
18
20
} ,
19
21
overrides : [
20
22
// node files
Original file line number Diff line number Diff line change 12
12
/.env *
13
13
/.eslintignore
14
14
/.eslintrc.js
15
+ /.git /
15
16
/.gitignore
16
17
/.template-lintrc.js
17
18
/.travis.yml
Original file line number Diff line number Diff line change @@ -28,12 +28,28 @@ branches:
28
28
29
29
jobs :
30
30
fail_fast : true
31
+ allow_failures :
32
+ - env : EMBER_TRY_SCENARIO=ember-canary
31
33
32
34
include :
33
35
# runs linting and tests with current locked deps
36
+
34
37
- stage : " Tests"
35
38
name : " Tests"
36
39
script :
37
40
- npm run lint:hbs
38
41
- npm run lint:js
39
- - npm run test:all
42
+ - npm test
43
+
44
+ # we recommend new addons test the current and previous LTS
45
+ # as well as latest stable release (bonus points to beta/canary)
46
+ - stage : " Additional Tests"
47
+ env : EMBER_TRY_SCENARIO=ember-lts-3.4
48
+ - env : EMBER_TRY_SCENARIO=ember-lts-3.8
49
+ - env : EMBER_TRY_SCENARIO=ember-release
50
+ - env : EMBER_TRY_SCENARIO=ember-beta
51
+ - env : EMBER_TRY_SCENARIO=ember-canary
52
+ - env : EMBER_TRY_SCENARIO=ember-default-with-jquery
53
+
54
+ script :
55
+ - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO
Original file line number Diff line number Diff line change 3
3
## Installation
4
4
5
5
* ` git clone <repository-url> `
6
- * ` cd my-addon `
6
+ * ` cd ember-cli-chart `
7
7
* ` npm install `
8
8
9
9
## Linting
You can’t perform that action at this time.
0 commit comments