Skip to content

Commit 6c632e6

Browse files
committed
10.0.0-alpha.2
1 parent 97699cd commit 6c632e6

File tree

6 files changed

+15
-3
lines changed

6 files changed

+15
-3
lines changed

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- '12'
3+
- '16'
44
before_install:
55
- git config --global url."https://git@".insteadOf git://
66
- echo -e "machine github.com\n login $CI_USER_TOKEN" > ~/.netrc

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
# 10.0.0-alpha.2 - Setp 12 2022
2+
3+
- enable node 16 "everywhere" in repo
4+
- ignore certain properties in "react/no-unknown-property" rule
5+
- turn off testing-library/no-debugging-utils
6+
17
# 10.0.0-alpha.1 - Jul 15th 2022
2-
- turn of no-autofix since it breaks cra 5
38

9+
- turn of no-autofix since it breaks cra 5
410

511
# 10.0.0-alpha.0 - Jul 7th 2022
612

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
22
"name": "@fs/eslint-config-frontier-react",
3-
"version": "10.0.0-alpha.1",
3+
"version": "10.0.0-alpha.2",
44
"description": "A common ESLint configuration setup for frontier apps",
55
"main": "index.js",
6+
"engines": {
7+
"node": ">=16"
8+
},
69
"scripts": {
710
"test": "echo \"Warning: no test specified\" && exit 0",
811
"publish": "npmPublish",

react.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
'react/prop-types': 'off',
1414
'react/jsx-filename-extension': 'off',
1515
'react/require-default-props': 'off',
16+
'react/no-unknown-property': ['error', { ignore: ['css', 'columns'] }],
1617
'react-hooks/rules-of-hooks': 'error',
1718
'react-hooks/exhaustive-deps': 'warn',
1819
// 'react/jsx-newline': 'off',

test-helpers.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ module.exports = {
77
plugins: ['@fs/zion'],
88
rules: {
99
'@fs/zion/prefer-zion-render': 'off',
10+
'testing-library/no-debugging-utils': 'off',
1011
},
1112
}

0 commit comments

Comments
 (0)