File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 2
2
** /dist
3
3
4
4
# Ignore fixture projects
5
- __fixtures__
5
+ / __fixtures__
6
6
7
7
# Ignore the certain files in /docs
8
+ /docs /.docusaurus
9
+ /docs /build
8
10
/docs /versioned_docs
9
11
/docs /versioned_sidebars
10
12
@@ -21,6 +23,7 @@ packages/create-redwood-rsc-app
21
23
# Ignore test fixtures
22
24
** /__testfixtures__
23
25
** /__tests__ /fixtures
26
+ ** /__tests__ /__fixtures__
24
27
25
28
# TODO(jgmw): Re-enable these in managable chunks
26
29
packages /create-redwood-app /tests /e2e_prompts *
Original file line number Diff line number Diff line change 1
- import rootConfig from '../prettier.config.mjs'
1
+ /* eslint-env node */
2
+ // @ts -check
3
+
4
+ const rootConfig = require ( '../prettier.config' )
2
5
3
6
/**
4
7
* @see https://prettier.io/docs/en/configuration.html
@@ -9,4 +12,4 @@ const config = {
9
12
trailingComma : 'es5' ,
10
13
}
11
14
12
- export default config
15
+ module . exports = config
Original file line number Diff line number Diff line change
1
+ /* eslint-env node */
2
+ // @ts -check
3
+
1
4
/**
2
5
* @see https://prettier.io/docs/en/configuration.html
3
6
* @type {import("prettier").Config }
@@ -14,4 +17,4 @@ const config = {
14
17
] ,
15
18
}
16
19
17
- export default config
20
+ module . exports = config
You can’t perform that action at this time.
0 commit comments