Skip to content

Commit fe82a3e

Browse files
authored
Merge pull request #25 from datastax/signature-cleanup
Signature cleanup
2 parents 90ebeac + a88b5e8 commit fe82a3e

File tree

159 files changed

+25967
-14149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+25967
-14149
lines changed

. prettierignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

. prettierrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.env.example

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Astra API endpoint
2+
ASTRA_URI=https://<db_id>-<region>.apps.astra.datastax.com
3+
4+
# Application token, used to authenticate with the Astra API
5+
APPLICATION_TOKEN=AstraCS:<rest_of_token>
6+
7+
# Set this to some value to enable running tests that require a $vectorize enabled environment
8+
ASTRA_RUN_VECTORIZE_TESTS=
9+
10+
# Set this to some value to enable running long-running tests
11+
ASTRA_RUN_LONG_TESTS`=
12+
13+
# Set this to some value to enable running admin tests
14+
ASTRA_RUN_ADMIN_TESTS=
15+
16+
# Set this to run tests on HTTP1 by default
17+
ASTRA_USE_HTTP1=

.eslintrc.cjs

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
11
/* eslint-env node */
22
module.exports = {
3-
ignorePatterns: ["dist"],
4-
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier', 'plugin:prettier/recommended'],
3+
ignorePatterns: ['dist/*'],
4+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
55
parser: '@typescript-eslint/parser',
6-
plugins: ['@typescript-eslint', 'prettier', 'sort-destructure-keys'],
6+
plugins: ['@typescript-eslint'],
77
root: true,
8-
};
8+
rules: {
9+
// We are *way* past this point lmao
10+
'@typescript-eslint/no-explicit-any': 'off',
11+
// Only way I can do indentation in ts-doc
12+
'no-irregular-whitespace': 'off',
13+
// Makes underscore variables not throw a fit
14+
'@typescript-eslint/no-unused-vars': [
15+
'error',
16+
{
17+
'argsIgnorePattern': '^_',
18+
'varsIgnorePattern': '^_',
19+
'caughtErrorsIgnorePattern': '^_',
20+
},
21+
],
22+
},
23+
};

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,7 @@ dist
132132
.idea
133133
creds.json
134134
.DS_Store
135-
build.zip
135+
build.zip
136+
137+
temp
138+
tsdoc-metadata.json

.np-config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"testScript": "test:prerelease"
3+
}

APIReference.hbs

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)