-
Updated
Sep 29, 2020 - TypeScript
#
codemod
Here are 121 public repositories matching this topic...
A tool to help migrate JavaScript code quickly and conveniently to TypeScript
Improved productivity 💯 with the practical 🤓 use of the power 💪 of Abstract Syntax Trees 🌳 to lint ⚠️ and transform 🔀 your code
-
Updated
Mar 18, 2020 - JavaScript
-
Updated
Sep 26, 2020 - JavaScript
sibelius
commented
Mar 13, 2019
- ignore test file patterns, we can read those from jest.config.js
- ignore
it()description - ignore
describe()description
A simple codemod to handle the new import style on RN25
-
Updated
May 4, 2017 - JavaScript
Codemod to migrate from Lodash get and logical and expressions to optional chaining
-
Updated
Sep 29, 2020 - JavaScript
nodejs
javascript
lint
config
plugin
babel
eslint
ast
transform
codemod
hacktoberfest
unused
unused-variables
codeshift
-
Updated
Sep 29, 2020 - JavaScript
Codemod to update import declarations as per react-native > 0.59.x deprecations.
-
Updated
Sep 4, 2020 - JavaScript
Codemods for AVA
-
Updated
Dec 26, 2018 - JavaScript
browniebroke
commented
Sep 27, 2020
We have 3 workflows that run during CI at the moment: test.yml, lint.yml and commitlint.yml. We could simplify this by merging them into a single ci.yml workflow, with 3 separate jobs test, lint and commitlint.
https://astexplorer.net with ES Modules support and Hot Reloading
electron
javascript
flow
parser
babel
typescript
webpack
postcss
eslint
babel-plugin
ast
syntax-tree
codemod
jscodeshift
ast-explorer
eslintplugin
codemods
astexplorer
-
Updated
Sep 17, 2020 - JavaScript
Codemod to convert curly braces syntax to angle brackets syntax
-
Updated
Sep 28, 2020 - JavaScript
-
Updated
Jul 18, 2020 - TypeScript
tscodeshift is a toolkit for running codemods over multiple TS files
-
Updated
Oct 5, 2017 - TypeScript
-
Updated
May 4, 2018 - JavaScript
Transform .graphql to graphql-js typescript
-
Updated
Sep 12, 2020 - TypeScript
Awesome list of codemods for various languages, libraries and frameworks
-
Updated
Apr 3, 2020
A collection of transforms for use with JSCodeshift
refactoring
codemod
jscodeshift
proptypes
default-props
code-transformation
sort-objects
prop-types
codemods
automated-refactoring
astexplorer
sort-jsx
add-react-import
named-imports
named-exports
-
Updated
Sep 4, 2020 - JavaScript
dhruvdutt
commented
Apr 9, 2018
Currently, we have support for transforming static Methods on prototype from
Controller.staticMethod = function(param) {
var bar = "webpack-cli";
};to
static staticMethod(param) {
var bar = "webpack-cli";
}But, we don't have support for transforming object expressions like this:
Controller.optionsObject = {
bar: "webpack-cli"
};We need
Improve this page
Add a description, image, and links to the codemod topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the codemod topic, visit your repo's landing page and select "manage topics."
The
andmethod is not supported by Jest, where Chai does support it.It should probably cut the assertion in two:
Is this a feasible option for codemods?
If so: I'm willing to work on a PR.