Skip to content

Commit 7723a98

Browse files
authored
Added more lint rules (#159)
1 parent b79525f commit 7723a98

File tree

7 files changed

+22
-3
lines changed

7 files changed

+22
-3
lines changed

.eslintrc.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,17 @@ module.exports = {
5858
"args": "none",
5959
"caughtErrors": "all",
6060
"ignoreRestSiblings": false,
61-
}],
61+
}],
6262
'brace-style': 'off',
6363
'no-throw-literal': 'error',
6464
'no-var': 'error',
6565
'prefer-const': 'error',
66+
'no-cond-assign': 'error',
67+
'no-multi-assign': 'error',
68+
'no-unused-expressions': ['error', {
69+
"allowShortCircuit": true,
70+
"allowTernary": true,
71+
}],
6672
curly: 'error',
6773
eqeqeq: ['error', 'always'],
6874
semi: 'off',

e2e/tests/auth.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-unused-expressions */
12
import { expect } from 'chai';
23
import { before, after, EditorView, Workbench, By, ActivityBar, SideBarView } from 'vscode-extension-tester';
34

e2e/tests/no-auth.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-unused-expressions */
12
import { expect } from 'chai';
23
import { before, ActivityBar, after, SideBarView, By, EditorView, Workbench } from 'vscode-extension-tester';
34

src/bitbucket/bitbucket-server/pullRequests.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { AxiosResponse } from 'axios';
1818

1919
describe('ServerPullRequestApi', () => {
2020
let api: ServerPullRequestApi;
21-
let mockClient: HTTPClient = new HTTPClient('', '', '', async (errJson: AxiosResponse) => Error('some error'));
21+
const mockClient: HTTPClient = new HTTPClient('', '', '', async (errJson: AxiosResponse) => Error('some error'));
2222
let site: BitbucketSite;
2323

2424
beforeEach(() => {

src/lib/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ module.exports = {
22
rules: {
33
'no-var': 'error',
44
'prefer-const': 'error',
5+
'no-multi-assign': 'error',
6+
'no-unused-expressions': ['error', {
7+
"allowShortCircuit": true,
8+
"allowTernary": true,
9+
}],
510
'no-restricted-imports': [
611
'error',
712
{

src/react/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ module.exports = {
22
rules: {
33
'no-var': 'error',
44
'prefer-const': 'error',
5+
'no-multi-assign': 'error',
6+
'no-unused-expressions': ['error', {
7+
"allowShortCircuit": true,
8+
"allowTernary": true,
9+
}],
510
'no-restricted-imports': [
611
'error',
712
{

src/webviews/components/issue/TextAreaEditor.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ export const TextAreaEditor: React.FC<Props> = ({ value, disabled, placeholder,
1515

1616
useEffect(() => {
1717
if (inputTextAreaRef.current && cursorPosition > 0) {
18-
inputTextAreaRef.current.selectionStart = inputTextAreaRef.current.selectionEnd = cursorPosition;
18+
inputTextAreaRef.current.selectionEnd = cursorPosition;
19+
inputTextAreaRef.current.selectionStart = cursorPosition;
1920
inputTextAreaRef.current.focus();
2021
}
2122
}, [inputTextAreaRef, cursorPosition]);

0 commit comments

Comments
 (0)