Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.

Commit 8622c71

Browse files
committed
Release 9.0.0
1 parent 09549e0 commit 8622c71

File tree

13 files changed

+1275
-13
lines changed

13 files changed

+1275
-13
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Contributing to eslint-config-oraclejet
22

33
*Copyright (c) 2014, 2020 Oracle and/or its affiliates
4-
The Universal Permissive License (UPL), Version 1.0*
4+
Licensed under The Universal Permissive License (UPL), Version 1.0
5+
as shown at https://oss.oracle.com/licenses/upl/*
56

67
**Pull requests are currently not being accepted for the Oracle JET project.**
78

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
Copyright (c) 2020 Oracle and/or its affiliates.
44

5-
The Universal Permissive License (UPL), Version 1.0
5+
Licensed under The Universal Permissive License (UPL), Version 1.0
6+
as shown at https://oss.oracle.com/licenses/upl/
67

78
Subject to the condition set forth below, permission is hereby granted to any
89
person obtaining a copy of this software, associated documentation and/or data

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @oracle/eslint-config-oraclejet 8.3.0
1+
# @oracle/eslint-config-oraclejet 9.0.0
22

33
This package contains the ESLint configurations used by the Oracle JET project. These configurations come in two flavors:
44

RELEASENOTES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Release Notes for eslint-config-oraclejet ##
22

3-
### 8.3.0
4-
* No changes
3+
### 9.0.0
4+
* Added es6-browser for browser-based es6 code
55

66
### 5.2.0
77
* No changes

es5.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/**
22
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
3-
The Universal Permissive License (UPL), Version 1.0
3+
Licensed under The Universal Permissive License (UPL), Version 1.0
4+
as shown at https://oss.oracle.com/licenses/upl/
5+
46
*/
57
// Config for es6
68
module.exports = {

es5/base.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/**
22
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
3-
The Universal Permissive License (UPL), Version 1.0
3+
Licensed under The Universal Permissive License (UPL), Version 1.0
4+
as shown at https://oss.oracle.com/licenses/upl/
5+
46
*/
57
module.exports = {
68
"parserOptions": {

es6-browser.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
3+
Licensed under The Universal Permissive License (UPL), Version 1.0
4+
as shown at https://oss.oracle.com/licenses/upl/
5+
6+
*/
7+
// Config for es6-browser
8+
module.exports = {
9+
extends: [
10+
'./es6-browser/base'
11+
].map(require.resolve),
12+
rules: {}
13+
};

es6-browser/base.js

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/**
2+
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
3+
Licensed under The Universal Permissive License (UPL), Version 1.0
4+
as shown at https://oss.oracle.com/licenses/upl/
5+
6+
*/
7+
module.exports = {
8+
"extends": "airbnb-base",
9+
"parserOptions": {
10+
"ecmaVersion": 6
11+
},
12+
"plugins": [
13+
],
14+
"env": {
15+
"browser": true
16+
},
17+
"rules": {
18+
"comma-dangle": "off",
19+
"no-underscore-dangle": "off",
20+
"func-names": "off",
21+
"import/no-unresolved" : "off",
22+
"indent" : "off",
23+
"linebreak-style": "off",
24+
"no-console" : "off",
25+
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
26+
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
27+
"strict" : "off",
28+
"vars-on-top": "off",
29+
"max-len": ['error', 100, 2, {
30+
ignoreUrls: true,
31+
ignoreComments: true,
32+
ignoreRegExpLiterals: true,
33+
ignoreStrings: true,
34+
ignoreTemplateLiterals: true,
35+
}],
36+
}
37+
};

es6.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/**
22
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
3-
The Universal Permissive License (UPL), Version 1.0
3+
Licensed under The Universal Permissive License (UPL), Version 1.0
4+
as shown at https://oss.oracle.com/licenses/upl/
5+
46
*/
57
// Config for es6
68
module.exports = {

es6/base.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/**
22
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
3-
The Universal Permissive License (UPL), Version 1.0
3+
Licensed under The Universal Permissive License (UPL), Version 1.0
4+
as shown at https://oss.oracle.com/licenses/upl/
5+
46
*/
57
module.exports = {
6-
"installedESLint": true,
78
"extends": "airbnb-base",
89
"plugins": [
910
],
@@ -12,6 +13,7 @@ module.exports = {
1213
"no-underscore-dangle": "off",
1314
"func-names": "off",
1415
"import/no-unresolved" : "off",
16+
"indent" : "off",
1517
"linebreak-style": "off",
1618
"no-console" : "off",
1719
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],

0 commit comments

Comments
 (0)