-
Updated
Oct 17, 2021 - TypeScript
#
codemod
Here are 145 public repositories matching this topic...
A tool to help migrate JavaScript code quickly and conveniently to TypeScript
Codemods for your project config files
-
Updated
Oct 14, 2021 - JavaScript
Improved productivity 💯 with the practical 🤓 use of the power 💪 of Abstract Syntax Trees 🌳 to lint ⚠️ and transform 🔀 your code
-
Updated
Jan 25, 2021 - JavaScript
-
Updated
Oct 14, 2021 - JavaScript
coderaiser
commented
Oct 16, 2020
Change format of examples in packages/*/README.md files to a new format:
Old: @putout/plugin-remove-debugger.
New: @putout/plugin-extract-object-properties.
Here is example:
con
sibelius
commented
Mar 13, 2019
- ignore test file patterns, we can read those from jest.config.js
- ignore
it()description - ignore
describe()description
A tool to automatically fix Django deprecations.
-
Updated
Oct 25, 2021 - Python
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
Oct 29, 2021 - JavaScript
-
Updated
Jul 10, 2021 - JavaScript
Awesome list of codemods for various languages, libraries and frameworks
-
Updated
Apr 3, 2020
Codemod to update import declarations as per react-native > 0.59.x deprecations.
-
Updated
Sep 21, 2021 - JavaScript
Codemods for AVA
-
Updated
Dec 26, 2018 - JavaScript
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
May 10, 2021 - JavaScript
Codemod to convert curly braces syntax to angle brackets syntax
-
Updated
Aug 3, 2021 - JavaScript
tscodeshift is a toolkit for running codemods over multiple TS files
-
Updated
Oct 5, 2017 - TypeScript
-
Updated
Sep 21, 2021 - TypeScript
Transform .graphql to graphql-js typescript
-
Updated
Sep 21, 2021 - TypeScript
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
May 8, 2021 - JavaScript
-
Updated
May 4, 2018 - JavaScript
Codemod to convert React PropTypes to TypeScript types.
-
Updated
Oct 9, 2021 - 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.