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

Commit b721112

Browse files
committed
Release 10.0.0
1 parent 2a19a6c commit b721112

File tree

13 files changed

+1281
-14
lines changed

13 files changed

+1281
-14
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to eslint-config-oraclejet
22

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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# eslint-config-oraclejet
22

3-
Copyright (c) 2020 Oracle and/or its affiliates.
3+
Copyright (c) 2021 Oracle and/or its affiliates.
44

55
Licensed under The Universal Permissive License (UPL), Version 1.0
66
as shown at https://oss.oracle.com/licenses/upl/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @oracle/eslint-config-oraclejet 9.2.0
1+
# @oracle/eslint-config-oraclejet 10.0.0
22

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

@@ -133,5 +133,5 @@ While we would like to leave this rule enabled, we are currently seeing some fal
133133
Oracle JET is an open source project. Pull Requests are currently not being accepted. See [CONTRIBUTING](https://github.com/oracle/eslint-config-oraclejet/blob/master/CONTRIBUTING.md) for details.
134134

135135
## [License](https://github.com/oracle/eslint-config-oraclejet/blob/master/LICENSE)
136-
Copyright (c) 2020 Oracle and/or its affiliates and released under the
136+
Copyright (c) 2021 Oracle and/or its affiliates and released under the
137137
[Universal Permissive License (UPL)](https://oss.oracle.com/licenses/upl/), Version 1.0

RELEASENOTES.md

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

3+
### 10.0.0
4+
* Updated eslint-config-airbnb-base
5+
36
### 9.0.0
47
* Added es6-browser for browser-based es6 code
58

es5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55

es5/base.js

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55
@@ -20,6 +20,7 @@ module.exports = {
2020
"rules": {
2121
"comma-dangle": "off",
2222
"func-names": "off",
23+
"function-paren-newline": "off",
2324
"linebreak-style": "off",
2425
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
2526
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
@@ -31,6 +32,20 @@ module.exports = {
3132
ignoreRegExpLiterals: true,
3233
ignoreStrings: true,
3334
ignoreTemplateLiterals: true,
34-
}],
35+
}],
36+
"prefer-promise-reject-errors": "off",
37+
"object-curly-newline": "off",
38+
'spaced-comment': ['error', 'always', {
39+
line: {
40+
exceptions: ['-', '+'],
41+
markers: ['=', '!'], // space here to support sprockets directives
42+
},
43+
block: {
44+
exceptions: ['-', '+'],
45+
markers: ['=', '!'], // space here to support sprockets directives
46+
balanced: false,
47+
}
48+
}],
49+
"switch-colon-spacing": "off",
3550
}
3651
}

es6-browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55

es6-browser/base.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55
@@ -18,12 +18,28 @@ module.exports = {
1818
"comma-dangle": "off",
1919
"no-underscore-dangle": "off",
2020
"func-names": "off",
21+
"function-paren-newline": "off",
2122
"import/no-unresolved" : "off",
2223
"indent" : "off",
2324
"linebreak-style": "off",
2425
"no-console" : "off",
2526
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
27+
"no-restricted-globals": "off",
2628
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
29+
"object-curly-newline": "off",
30+
"prefer-destructuring": "off",
31+
"prefer-promise-reject-errors": "off",
32+
'spaced-comment': ['error', 'always', {
33+
line: {
34+
exceptions: ['-', '+'],
35+
markers: ['=', '!'], // space here to support sprockets directives
36+
},
37+
block: {
38+
exceptions: ['-', '+'],
39+
markers: ['=', '!'], // space here to support sprockets directives
40+
balanced: false,
41+
}
42+
}],
2743
"strict" : "off",
2844
"vars-on-top": "off",
2945
"max-len": ['error', 100, 2, {

es6.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55

es6/base.js

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
2+
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
33
Licensed under The Universal Permissive License (UPL), Version 1.0
44
as shown at https://oss.oracle.com/licenses/upl/
55
@@ -12,12 +12,28 @@ module.exports = {
1212
"comma-dangle": "off",
1313
"no-underscore-dangle": "off",
1414
"func-names": "off",
15+
"function-paren-newline": "off",
1516
"import/no-unresolved" : "off",
1617
"indent" : "off",
1718
"linebreak-style": "off",
1819
"no-console" : "off",
1920
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
21+
"no-restricted-globals": "off",
2022
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
23+
"object-curly-newline": "off",
24+
"prefer-destructuring": "off",
25+
"prefer-promise-reject-errors": "off",
26+
'spaced-comment': ['error', 'always', {
27+
line: {
28+
exceptions: ['-', '+'],
29+
markers: ['=', '!'], // space here to support sprockets directives
30+
},
31+
block: {
32+
exceptions: ['-', '+'],
33+
markers: ['=', '!'], // space here to support sprockets directives
34+
balanced: false,
35+
}
36+
}],
2137
"strict" : "off",
2238
}
2339
};

0 commit comments

Comments
 (0)