Skip to content

Commit 6a1ae6e

Browse files
zekebfirsh
authored andcommitted
use new client API
Co-authored-by: Zeke Sikelianos <zeke@sikelianos.com> Co-authored-by: Ben Firshman <ben@firshman.com>
1 parent 6fa9006 commit 6a1ae6e

22 files changed

+9018
-2521
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
end_of_line = lf
10+
# editorconfig-tools is unable to ignore longs strings or urls
11+
max_line_length = off
12+
13+
[*.js]
14+
quote_type = single
15+
16+
[CHANGELOG.md]
17+
indent_size = false

.eslintrc.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
commonjs: true,
5+
es2021: true,
6+
node: true,
7+
},
8+
extends: [
9+
'airbnb-base',
10+
'plugin:jest/recommended',
11+
'plugin:jsdoc/recommended',
12+
],
13+
overrides: [],
14+
parserOptions: {
15+
ecmaVersion: 'latest',
16+
},
17+
plugins: ['jest', 'jsdoc'],
18+
rules: {
19+
camelcase: 'off',
20+
'comma-dangle': 'off',
21+
'generator-star-spacing': 'off',
22+
'max-len': 'off',
23+
'operator-linebreak': 'off',
24+
'jsdoc/require-param-description': 'off',
25+
},
26+
};

0 commit comments

Comments
 (0)