Skip to content

Commit 8491b05

Browse files
committed
Remove prettier config and fix test file paths to use ./test/ prefix
1 parent a388629 commit 8491b05

32 files changed

+32
-47
lines changed

bun.lock

Lines changed: 9 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,6 @@
9797
"homepage": "https://github.com/alasql/alasql",
9898
"keywords": ["SQL", "javascript", "database", "Excel", "XLSX", "XLS", "CSV"],
9999
"license": "MIT",
100-
"prettier": {
101-
"useTabs": true,
102-
"printWidth": 100,
103-
"singleQuote": true,
104-
"arrowParens": "avoid",
105-
"trailingComma": "es5",
106-
"bracketSpacing": false
107-
},
108100
"husky": {
109101
"hooks": {
110102
"pre-push": "yarn test-format || (echo please format using 'yarn format' && exit 1)"

test/test149.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"alasql": "{\"databases\":{}}"
3-
}
2+
"alasql": "{\"databases\":{}}"
3+
}

test/test149.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
77

88
if (typeof window === 'undefined') {
99
var DOMStorage = require('dom-storage');
10-
global.localStorage = new DOMStorage('./test149.json', {
10+
global.localStorage = new DOMStorage('./test/test149.json', {
1111
strict: false,
1212
ws: '',
1313
});

test/test150.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"alasql": "{\"databases\":{}}"
3-
}
2+
"alasql": "{\"databases\":{}}"
3+
}

test/test150.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
77

88
if (typeof window === 'undefined') {
99
var DOMStorage = require('dom-storage');
10-
global.localStorage = new DOMStorage('./test150.json', {
10+
global.localStorage = new DOMStorage('./test/test150.json', {
1111
strict: false,
1212
ws: '',
1313
});

test/test151.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
77

88
if (typeof window !== 'undefined') {
99
var DOMStorage = require('dom-storage');
10-
global.localStorage = new DOMStorage('./test151.json', {
10+
global.localStorage = new DOMStorage('./test/test151.json', {
1111
strict: false,
1212
ws: '',
1313
});

test/test152.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
77

88
if (typeof window !== 'undefined') {
99
var DOMStorage = require('dom-storage');
10-
global.localStorage = new DOMStorage('./test152.json', {
10+
global.localStorage = new DOMStorage('./test/test152.json', {
1111
strict: false,
1212
ws: '',
1313
});

test/test159.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
77

88
if (typeof window !== 'undefined') {
99
var DOMStorage = require('dom-storage');
10-
global.localStorage = new DOMStorage('./test159.json', {
10+
global.localStorage = new DOMStorage('./test/test159.json', {
1111
strict: false,
1212
ws: '',
1313
});

test/test160.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
99

1010
if (false) {
1111
var DOMStorage = require('dom-storage');
12-
global.localStorage = new DOMStorage('./test159.json', {
12+
global.localStorage = new DOMStorage('./test/test159.json', {
1313
strict: false,
1414
ws: '',
1515
});

0 commit comments

Comments
 (0)