-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from buckaroo-it/develop
Develop
- Loading branch information
Showing
237 changed files
with
19,085 additions
and
20,008 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
node_modules/ | ||
vendor/ | ||
dist/ | ||
build/ | ||
*.min.js | ||
*.css | ||
*.html | ||
*.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"jquery": true | ||
}, | ||
"extends": [ | ||
"airbnb", | ||
"plugin:react/recommended" | ||
], | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"ecmaVersion": 12, | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"react", | ||
"react-hooks" | ||
], | ||
"rules": { | ||
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | ||
"react/react-in-jsx-scope": "off", | ||
"react/prop-types": "off", | ||
"max-len": ["error", { "code": 140 }], | ||
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
$path = realpath('./'); | ||
$path = realpath( './' ); | ||
|
||
$di = new RecursiveIteratorIterator( | ||
new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS), | ||
RecursiveIteratorIterator::LEAVES_ONLY | ||
new RecursiveDirectoryIterator( $path, FilesystemIterator::SKIP_DOTS ), | ||
RecursiveIteratorIterator::LEAVES_ONLY | ||
); | ||
|
||
foreach ($di as $name => $fio) { | ||
$newname = $fio->getPath() . DIRECTORY_SEPARATOR . strtolower(str_replace(" ","",str_replace("&","-",$fio->getFilename()))); | ||
echo $newname, "\r\n"; | ||
rename($name, $newname); | ||
} | ||
foreach ( $di as $name => $fio ) { | ||
$newname = $fio->getPath() . DIRECTORY_SEPARATOR . strtolower( str_replace( ' ', '', str_replace( '&', '-', $fio->getFilename() ) ) ); | ||
echo $newname, "\r\n"; | ||
rename( $name, $newname ); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
vendor/ | ||
.idea/ | ||
composer.lock | ||
.eslintrc.json | ||
|
Oops, something went wrong.