@putout/plugin-filesystem 
πPutout plugin helps to lint filesystem.
Install
npm i @putout/plugin-filesystem -D
Rules
- β bundle;
- β convert-filesystem-to-simple-filesystem;
- β convert-js-to-json;
- β convert-json-to-js;
- β convert-simple-filesystem-to-filesystem;
- β move-referenced-file;
- β read-all-files;
- β rename-file;
- β remove-empty-directory;
- β remove-travis-yml-file;
- β remove-vim-swap-file;
- β remove-nyc-output-files;
- β remove-files;
- β rename-referenced-file;
- β rename-spec-to-test;
- β rename-test-to-spec;
- β replace-cwd;
- β write-all-files;
Config
{
"rules": {
"filesystem/remove-empty-directory": "on",
"filesystem/remove-travis-yml-file": "on",
"filesystem/remove-vim-swap-file": "on",
"filesystem/remove-nyc-output-files": "on",
"filesystem/bundle": "off",
"filesystem/read-all-files": ["off", {
"mask": "*"
}],
"filesystem/write-all-files": "off",
"filesystem/rename-file": "off",
"filesystem/remove-files": "off",
"filesystem/rename-spec-to-test": "off",
"filesystem/rename-test-to-spec": "off",
"filesystem/rename-referenced-file": "off",
"filesystem/move-referenced-file": "off",
"filesystem/convert-simple-filesystem-to-filesystem": "off",
"filesystem/replace-cwd": ["off", {
"from": "/home/coderaiser/putout",
"to": "/"
}],
"filesystem/convert-json-to-js": ["off", {
"filename": "package.json"
}],
"filesystem/convert-js-to-json": ["off", {
"filename": "package.js"
}]
}
}
rename-file
Checkout in πPutout Editor.
Update .putout.json
to enable rule:
{
"rules": {
"filesystem/rename-file": ["on", {
"from": "README.md",
"to": "readme.md"
}]
}
}
It will make next modifications to filesystem:
-README.md
+readme.md
For more sophisticated example, use mask
:
{
"rules": {
"filesystem/rename-file": ["on", {
"mask": "*.test.*",
"from": "test",
"to": "spec"
}]
}
}
It will rename 'test' to 'spec' in *.test.*
files:
-index.test.js
+index.spec.js
remove-empty-directory
Checkout in πPutout Editor.
/
-|-- hello/
-| `-- abc/
-| `-- def/
remove-nyc-output-files
Checkout in πPutout Editor.
-.nyc_output
remove-travis-yml-file
Checkout in πPutout Editor.
-.travis.yml
remove-vim-swap-file
Checkout in πPutout Editor.
-readme.md.swap
remove-files
Update .putout.json
to enable rule:
{
"rules": {
"filesystem/remove-files": ["on", {
"names": ["coverage"]
}]
}
}
It will make next modifications to filesystem:
/
|-- test/
| `-- hello.spec.js
-|-- coverage/
`-- lib/
`-- hello.js
rename-spec-to-test
Checkout in πPutout Editor.
-index.spec.js
+index.test.js
rename-test-to-spec
Checkout in πPutout Editor.
-index.test.js
+index.spec.js
rename-referenced-file
Update .putout.json
to enable rule:
{
"rules": {
"filesystem/rename-referenced-file": ["on", {
"from": "hello.js",
"to": "world.js"
}]
}
}
Checkout in πPutout Editor.
Before:
// hello.spec.js
import hello from './hello.js';
// hello.js
export const hello = 'world';
After:
-hello.js
+world.js
// hello.spec.js
import hello from './world.js';
// world.js
export const hello = 'world';
move-referenced-file
Update .putout.json
to enable rule:
{
"rules": {
"filesystem/move-referenced-file": ["on", {
"name": "hello.js",
"directory": "lib"
}]
}
}
Checkout in πPutout Editor.
Before:
/
|-- test/
| `-- hello.spec.js
|-- src/
| `-- hello.js
`-- lib/
// test/hello.spec.js
import hello from '../src/hello.js';
// src/hello.js
export const hello = 'world';
After:
/
|-- test/
| `-- hello.spec.js
|-- src/
`-- lib/
`-- hello.js
-src/hello.js
+lib/hello.js
// test/hello.spec.js
import hello from '../lib/hello.js';
// lib/hello.js
export const hello = 'world';
convert-simple-filesystem-to-filesystem
Checkout in πPutout Editor.
β Example of incorrect code
__putout_processor_filesystem([
'/',
'/hello.txt',
[
'/world.txt',
'hello world',
],
'/abc/',
]);
β Example of correct code
__putout_processor_filesystem({
type: 'directory',
filename: '/',
files: [{
type: 'file',
filename: '/hello.txt',
}, {
type: 'file',
filename: '/world.txt',
content: 'hello world',
}, {
type: 'directory',
filename: '/abc',
files: [],
}],
});
convert-filesystem-to-simple-filesystem
Checkout in πPutout Editor.
β Example of incorrect code
__putout_processor_filesystem({
type: 'directory',
filename: '/',
files: [{
type: 'file',
filename: '/hello.txt',
}, {
type: 'file',
filename: '/world.txt',
content: 'hello world',
}, {
type: 'directory',
filename: '/abc',
files: [],
}],
});
β Example of correct code
__putout_processor_filesystem([
'/',
'/hello.txt',
[
'/world.txt',
'hello world',
],
'/abc/',
]);
bundle
Bundle and minify css
files.
{
"rules": {
"filesystem/bundle": ["on", {
"groups": [
["__:columns/__", [
"name-size-date.css",
"name-size.css"
]],
["main.css", [
"hello.css",
"world.css"
]],
"1:1"
]
}]
}
}
Checkout in πPutout Editor.
Before:
/
|-- css/
| `-- hello.css
| `-- world.css
After:
/
|-- css/
| `-- hello.css
| `-- world.css
|-- dist/
| `-- main.css
Just minify styles:
{
"rules": {
"filesystem/bundle": ["on", {
"groups": ["1:1"]
}]
}
}
Before:
/
|-- css/
| `-- hello.css
| `-- world.css
After:
/
|-- css/
| `-- hello.css
| `-- world.css
|-- dist/
| `-- hello.css
| `-- world.css
Create subdirectory:
{
"rules": {
"filesystem/bundle": ["on", {
"groups": [
["__:columns/__", [
"name-size-date.css",
"name-size.css"
]]
]
}]
}
}
Before:
/
|-- css/
| `-- hello.css
| `-- world.css
After:
/
|-- css/
| `-- hello.css
| `-- world.css
|-- dist/
| `-- columns
| `-- hello.css
| `-- world.css
Filter css files by mask:
{
"rules": {
"filesystem/bundle": ["on", {
"mask": "*.good.css",
"groups": ["1:1"]
}]
}
}
Before:
/
|-- css/
| `-- hello.css
| `-- world.good.css
After:
/
|-- css/
| `-- hello.css
| `-- world.css
|-- dist/
| `-- world.good.css
You can even override transform
with your own config
:
putout(filesystem, {
rules: {
'filesystem/bundle': ['on', {
transform: (source: string | string[], config) => string,
}],
},
});
Concut files:
{
"rules": {
"filesystem/bundle": ["on", {
"groups": ["hello.css"]
}]
}
}
Before:
/
|-- css/
| `-- hello.css
| `-- world.css
After:
/
|-- css/
| `-- hello.css
| `-- world.css
|-- dist/
| `-- hello.css
replace-cwd
Checkout in πPutout Editor.
When from=/home/coderaiser/putout
and to=/
:
{
"rules": {
"filesystem/replace-cwd": ["on", {
"from": "/home/coderaiser/putout",
"to": "/"
}]
}
}
β Example of incorrect code
__putout_processor_filesystem(['/home/coderaiser/putout/', '/home/coderaiser/putout/README.md']);
β Example of correct code
__putout_processor_filesystem(['/', '/README.md']);
read-all-files
Checkout in πPutout Editor.
β Example of incorrect code
["/", "/hello.xyz"]
β Example of correct code
["/", [
"/hello.xyz",
"hello world"
]]
write-all-files
Write all files that was read before to Filesystem.
Checkout in πPutout Editor.
["/", [
"/hello.xyz",
"hello world"
]]
convert-json-to-js
Checkout in πPutout Editor.
Filesystem:
-["/", "/package.json"]
+["/", "/package.js"]
β Example of incorrect code
{
"plugins": []
}
β Example of correct code
export default {
plugins: [],
};
convert-js-to-json
Checkout in πPutout Editor:
Filesystem:
-["/", "/package.js"]
+["/", "/package.json"]
β Example of incorrect code
{
"plugins": []
}
β Example of correct code
export default {
plugins: [],
};
License
MIT